| |
「BLUR」フィルタは、画像や文字をぼかすことができるフィルタです。用意されている属性値はadd、direction、strengthの3つです。addでは、ぼかす前の画像を表示する(値:true)、または表示しない(値:false)を指定します。directionは、ぼかしの方向を角度で、strengthはぼかしの強さを整数で指定します。
|
・元画像<BR>
<IMAGE src="syashin.jpg">
<BR><BR>
・add=true,direction=45,strength=5<BR>
<IMAGE src="syashin.jpg" style="filter:blur(add=true,direction=45,strength=5)">
<BR><BR>
・add=false,direction=45,strength=5<BR>
<IMAGE src="syashin.jpg" style="filter:blur(add=false,direction=45,strength=5)">
<BR><BR><BR>
・add=true,direction=90,strength=20<BR>
<FONT size="6" color="#0000FF">
<DIV style="width=500 ; filter:blur(add=true,direction=90,strength=20)">
文字だってブレちゃいます。
</DIV>
</FONT>
|
 |
|